home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / fish-disketten / fish_691-700 / d695 / ppdata / src / prefs.h < prev    next >
C/C++ Source or Header  |  1994-12-13  |  657b  |  33 lines

  1. /*
  2. *    prefs.h
  3. *
  4. *    Structure definition for ppdata preferences, and prototypes for
  5. *    routines in prefs.c.
  6. *
  7. *    MWS 3/92.
  8. */
  9.  
  10. struct PPDataPrefs {        /* refer to ppbase.h for details of values */
  11.     LONG    color;
  12.     LONG    efficiency;
  13.     LONG    speedup;
  14.     LONG    suffix;            /* append .pp suffix? */
  15.     LONG    overwrite;        /* overwrite w/o verify? */
  16.     LONG    control;        /* what to do with already-crunched files */
  17. };
  18.  
  19. #define PREFS_SIZE    sizeof(struct PPDataPrefs)
  20.  
  21. #ifdef PREFS_C
  22. #define PREFS_NAME    "S:PPData.config"
  23. #else
  24. extern struct PPDataPrefs prefs;
  25. #endif
  26.  
  27. /* function prototypes */
  28. void LoadPrefs(void);
  29. void SavePrefs(void);
  30. #ifdef PREFS_C
  31. static void UpdateMenus(void);
  32. #endif
  33.